'Declaration
Public Function New( _ ByVal securityPolicyUriString As String, _ ByVal firstTokenId As Long, _ ByVal keys() As Byte, _ ByVal timeToNextKey As Double, _ ByVal keyLifetime As Double _ )
'Usage
Dim securityPolicyUriString As String Dim firstTokenId As Long Dim keys() As Byte Dim timeToNextKey As Double Dim keyLifetime As Double Dim instance As New SecurityKeysInfo(securityPolicyUriString, firstTokenId, keys, timeToNextKey, keyLifetime)
public SecurityKeysInfo( string securityPolicyUriString, long firstTokenId, byte[] keys, double timeToNextKey, double keyLifetime )
public: SecurityKeysInfo( String^ securityPolicyUriString, int64 firstTokenId, array<byte>^ keys, double timeToNextKey, double keyLifetime )
Parameters
- securityPolicyUriString
- The URI string for the set of algorithms and key lengths used to secure the messages.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - firstTokenId
- The security token Id of the first key in the array of keys.
- keys
- An array of keys, ordered by the sequence in which they are used.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).The individual elements of the parameter value cannot be
null
(Nothing
in Visual Basic). - timeToNextKey
- The time before the current key is expected to expire. In milliseconds.
Valid values of this parameter are in the range from
0
to1.79769313486232E+308 (Double.MaxValue)
. - keyLifetime
- The lifetime of a key. In milliseconds.
Valid values of this parameter are in the range from
0
to1.79769313486232E+308 (Double.MaxValue)
.